home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / SNNSV32.ZIP / SNNSv3.2 / kernel / sources / random.h < prev    next >
C/C++ Source or Header  |  1994-04-25  |  700b  |  29 lines

  1. /*****************************************************************************
  2.   FILE           : random.h
  3.   SHORTNAME      : 
  4.   SNNS VERSION   : 3.2
  5.  
  6.   PURPOSE        : System V Library Functions
  7.   NOTES          :
  8.  
  9.   AUTHOR         : Niels Mache
  10.   DATE           : 01.10.90
  11.  
  12.   CHANGED BY     : Sven Doering
  13.   IDENTIFICATION : @(#)random.h    1.10 3/15/94
  14.   SCCS VERSION   : 1.10
  15.   LAST CHANGE    : 3/15/94
  16.  
  17.              Copyright (c) 1990-1994  SNNS Group, IPVR, Univ. Stuttgart, FRG
  18.  
  19. ******************************************************************************/
  20. #ifndef SYS_FUNCS
  21. #define SYS_FUNCS
  22.  
  23. double    drand48( void );
  24. int    rand( void );
  25. long    lrand48(void );
  26. void    srand48( long );
  27.  
  28. #endif
  29.